projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9823440
)
(Ffile_attributes): Cast st_size to int.
author
Richard M. Stallman
<rms@gnu.org>
Wed, 13 Apr 1994 22:20:10 +0000
(22:20 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Wed, 13 Apr 1994 22:20:10 +0000
(22:20 +0000)
src/dired.c
patch
|
blob
|
history
diff --git
a/src/dired.c
b/src/dired.c
index 79fdce83c4282757b6ccbe3ea8bca8220518efa0..6362aa95364fe7ec3ce565cbb19e8d906495d50c 100644
(file)
--- a/
src/dired.c
+++ b/
src/dired.c
@@
-634,7
+634,7
@@
If file does not exist, returns nil.")
values[4] = make_time (s.st_atime);
values[5] = make_time (s.st_mtime);
values[6] = make_time (s.st_ctime);
- values[7] = make_number (s.st_size);
+ values[7] = make_number (
(int)
s.st_size);
/* If the size is out of range, give back -1. */
if (XINT (values[7]) != s.st_size)
XSETINT (values[7], -1);